home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Libris Britannia 4
/
science library(b).zip
/
science library(b)
/
DTP
/
DTP_TEX
/
3239.ZIP
/
DVIMTP.ZIP
/
GETBYTES.H
< prev
next >
Wrap
Text File
|
1986-03-29
|
504b
|
19 lines
/* -*-C-*- getbytes.h */
/*-->getbytes*/
/**********************************************************************/
/****************************** getbytes ******************************/
/**********************************************************************/
void
getbytes(fp, cp, n) /* get n bytes from file fp */
register FILE *fp; /* file pointer */
register char *cp; /* character pointer */
register BYTE n; /* number of bytes */
{
while (n--)
*cp++ = (char)getc(fp);
}